Security News
vlt Debuts New JavaScript Package Manager and Serverless Registry at NodeConf EU
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
@ljharb/resumer
Advanced tools
Note: This package is a fork of https://npmjs.com/resumer, and builds off of it.
Return a through stream that starts out paused and resumes on the next tick, unless somebody called .pause()
.
This module has the same signature as through.
var resumer = require('resumer');
var s = createStream();
s.pipe(process.stdout);
function createStream () {
var stream = resumer();
stream.queue('beep boop\n');
return stream;
}
$ node example/resume.js
beep boop
var resumer = require('@ljharb/resumer')
Return a new through stream from write
and end
, which default to pass-through .queue()
functions if not specified.
The stream starts out paused and will be resumed on the next tick unless you call .pause()
first.
write
and end
get passed directly through to through.
With npm do:
npm install @ljharb/resumer
MIT
FAQs
a through stream that starts paused and resumes on the next tick
We found that @ljharb/resumer demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
vlt introduced its new package manager and a serverless registry this week, innovating in a space where npm has stagnated.
Security News
Research
The Socket Research Team uncovered a malicious Python package typosquatting the popular 'fabric' SSH library, silently exfiltrating AWS credentials from unsuspecting developers.
Security News
At its inaugural meeting, the JSR Working Group outlined plans for an open governance model and a roadmap to enhance JavaScript package management.